home *** CD-ROM | disk | FTP | other *** search
/ Champak 120 / Vol 120.iso / games / titans / beastboy.swf / scripts / DefineSprite_101_blink / frame_1 / DoAction.as
Text File  |  2010-11-09  |  357b  |  26 lines

  1. var it = _parent;
  2. d = r.invhitdelay - 2;
  3. c = new color(it);
  4. c.setBrightness(50);
  5. onenterframe = function()
  6. {
  7.    d--;
  8.    if(d == 4)
  9.    {
  10.       c.resetcolor();
  11.    }
  12.    if(it._visible)
  13.    {
  14.       it._visible = 0;
  15.    }
  16.    else
  17.    {
  18.       it._visible = 1;
  19.    }
  20.    if(!d)
  21.    {
  22.       it._visible = 1;
  23.       this.removeMovieClip();
  24.    }
  25. };
  26.